home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Softshoe / Softshoe Source / SoftshoeApplication.h < prev    next >
Text File  |  2000-06-23  |  550b  |  29 lines

  1. // SoftshoeApplication.h
  2.  
  3. #ifndef SoftshoeApplication_h
  4. #define SoftshoeApplication_h
  5.  
  6. #ifndef SoftshoeFilter_h
  7. #include "SoftshoeFilter.h"
  8. #endif
  9. #ifndef BackgroundApplication_h
  10. #include "BackgroundApplication.h"
  11. #endif
  12.  
  13. class SoftshoeApplication: public BackgroundApplication
  14.   {
  15.     private:
  16.         SoftshoeFilter filter;
  17.     
  18.         SoftshoeApplication();
  19.         
  20.         // not implemented:
  21.             SoftshoeApplication( const SoftshoeApplication& );
  22.             SoftshoeApplication& operator=( const SoftshoeApplication& );
  23.         
  24.     public:
  25.         static SoftshoeApplication& The();
  26.   };
  27.  
  28. #endif
  29.